API Documentation
InputSystem.h
1 // InputSystem.h
3 //
5 
6 namespace nkInputs
7 {
12  {
13  public :
14 
15  // Constructor, destructor
23  virtual ~InputSystem () ;
24 
25  // Getters
29  virtual DataAllocator* getAllocator () const = 0 ;
30  } ;
31 }
nkInputs::InputSystem::getAllocator
virtual DataAllocator * getAllocator() const =0
nkInputs::DataAllocator
Used internally to allocate back-end related objects.
Definition: DataAllocator.h:12
nkInputs
Encompasses all API of component NilkinsInputs.
Definition: KeyboardDevice.h:7
nkInputs::InputSystem::~InputSystem
virtual ~InputSystem()
nkInputs::InputSystem
Interface with the back end input system.
Definition: InputSystem.h:12
nkInputs::InputSystem::InputSystem
InputSystem()